Tutorial 8 - Three-way branch migration first passage times

Multistrand's "First Passage Time" mode can be used to get statistics on how long it takes to reach a certain state, or one of a set of defined states. Here we compare two sequences for toehold-mediated three-way strand displacement. Starting in with the incoming strand binding by the toehold only, we run simulations until either the incoming strand falls off again (a "failure") or the incumbent top strand is displaced and dissociates (a "success"). This is specified via Dissoc_Macrostate StopConditions that look for the incoming strand being in a complex by itself, or the incumbent strand being in a complex by itself, respectively. We perform only 100 trials for each sequence, because that already takes around 10 minutes (most of which is design A). Once that's done, for each sequence we have 100 trial results, each tagged with either "failure" or "success". We can look at histograms of how long such trajectories took, or alternatively tabulate what fraction of trajectories completed by a certain time.

In [2]:
from multistrand.objects import *
from multistrand.options import Options
from multistrand.system import SimSystem

import numpy as np
import matplotlib
import matplotlib.pylab as plt
In [3]:
# Multistrand uses numerical arguments to specific the type of macrostate being defined,
# for StopCondition and Macrostate definitions:
Exact_Macrostate = 0   # match a secondary structure exactly (i.e. any system state that has a complex with this exact structure)
Bound_Macrostate = 1   # match any system state in which the given strand is bound to another strand
Dissoc_Macrostate = 2  # match any system state in which there exists a complex with exactly the given strands, in that order
Loose_Macrostate = 3   # match a secondary structure with "don't care"s, allowing a certain number of disagreements
Count_Macrostate = 4   # match a secondary structure, allowing a certain number of disagreements
# see Schaeffer's PhD thesis, chapter 7.2, for more information

We will do Multistrand simulations on two sequences, Design A and Design B. These are taken from Schaeffer's PhD thesis, figure 7.4.
Design A has a hairpin and is slow / fails often, whereas Design B is fast. (In Schaeffer's figure 7.4, Design A has the same sequence, but Design B is "ACCGCACCACGTGGGTGTCG".)

In [5]:
def setup_threewaybm_comparison(trials=100, toehold_seq = "GTGGGT", bm_design_A = "ACCGCACGTCCACGGTGTCG", bm_design_B = "ACCGCACGTCACTCACCTCG"):

    toehold = Domain(name="toehold",sequence=toehold_seq,length=len(toehold_seq))
    branch_migration_A = Domain(name="bm_A", sequence=bm_design_A, seq_length=len(bm_design_A))
    branch_migration_B = Domain(name="bm_B", sequence=bm_design_B, seq_length=len(bm_design_B))
    
    substrate_A = toehold + branch_migration_A
    substrate_B = toehold + branch_migration_B
    incumbent_A = Strand(name="incumbent",domains=[branch_migration_A.C])
    incumbent_B = Strand(name="incumbent",domains=[branch_migration_B.C])

    incoming_A = substrate_A.C
    incoming_B = substrate_B.C

    # start with the full toehold bound
    start_complex_A = Complex(strands=[incoming_A, substrate_A, incumbent_A], structure=".(+)(+)")
    start_complex_B = Complex(strands=[incoming_B, substrate_B, incumbent_B], structure=".(+)(+)")
    
    complete_complex_A = Complex(strands=[incumbent_A],structure=".")
    complete_complex_B = Complex(strands=[incumbent_B],structure=".")

    failed_complex_A = Complex(strands=[incoming_A],structure="..")
    failed_complex_B = Complex(strands=[incoming_B],structure="..")

    # the "success" state
    complete_sc_A = StopCondition("complete",[(complete_complex_A,Dissoc_Macrostate,0)])
    complete_sc_B = StopCondition("complete",[(complete_complex_B,Dissoc_Macrostate,0)])

    # the "failure" state
    failed_sc_A = StopCondition("failed",[(failed_complex_A,Dissoc_Macrostate,0)])
    failed_sc_B = StopCondition("failed",[(failed_complex_B,Dissoc_Macrostate,0)])

    o1 = Options(simulation_mode="First Passage Time", parameter_type="Nupack",
                substrate_type="DNA", num_simulations = trials, simulation_time=1.0,
                dangles = "Some", temperature = 310.15, join_concentration=1e-6, # 1 uM concentration
                start_state=[start_complex_A], rate_scaling='Calibrated')
    o1.stop_conditions = [complete_sc_A,failed_sc_A]

    o2 = Options(simulation_mode="First Passage Time", parameter_type="Nupack",
                substrate_type="DNA", num_simulations = trials, simulation_time=1.0,
                dangles = "Some", temperature = 310.15, join_concentration=1e-6, # 1 uM concentration
                start_state=[start_complex_B], rate_scaling='Calibrated')
    o2.stop_conditions = [complete_sc_B,failed_sc_B]
    
    return o1,o2

Once the simulations has run, we will want to show histograms of how long they took.

In [6]:
def plot_histograms_complete_vs_failed( result_list, colors=['b','m'], figure=1 ):
    # separate based on which stop condition ended the simulation   ((( what if simulation ran out of time? )))
    times_complete = np.array([i.time for i in result_list if i.tag == 'complete'])
    times_failed = np.array([i.time for i in result_list if i.tag == 'failed'])
    neither = [i for i in result_list if not i.tag == 'complete' and not i.tag == 'failed']
    if len(neither)>0 :
        print "some trajectories did not finish, one way nor the other..."
        for i in neither :
            assert (i.type_name=='Time')
            assert (i.tag == None )

    if len(times_complete)>0 and len(times_failed)>0 :
        min_time = np.min( [np.min(times_complete),np.min(times_failed)] )
        max_time = np.max( [np.max(times_complete),np.max(times_failed)] )
    else:
        if len(times_complete)>0 :
            min_time = np.min(times_complete)
            max_time = np.max(times_complete)
        if len(times_failed)>0 :
            min_time = np.min(times_failed)
            max_time = np.max(times_failed)
            
    plt.figure( figure )
    plt.hold(False)

    if len(times_complete)>0 :
        plt.hist( times_complete, 50, range=(min_time,max_time), color=colors[0], label="complete" )
        plt.hold(True)
    
    if len(times_failed)>0 :
        plt.hist( times_failed, 50, range=(min_time,max_time), color=colors[1],rwidth=.5, label="failed")

    plt.title("Completion times for successful and failed trajectories, Design A")
    plt.xlabel("First Passage Time (s)",fontsize='larger')
    plt.ylabel("# of Trajectories",fontsize='larger')
    plt.yticks(fontsize='larger',va='bottom')
    plt.xticks(fontsize='larger')
    plt.legend(loc=0)
    plt.show()
In [7]:
def plot_histograms_two_designs( result_lists, colors=['magenta','b'], figure=1 ):
    times = []
    times.append(np.array([i.time for i in result_lists[0] if i.tag == 'complete']))
    times.append(np.array([i.time for i in result_lists[1] if i.tag == 'complete']))

    min_time = np.min( [np.min(times[0]),np.min(times[1])] )
    max_time = np.max( [np.max(times[0]),np.max(times[1])] )
    # the above might fail if any list is empty; min, max of empty is undefined

    plt.figure( figure )
    plt.hold(False)
    plt.hist( times[1], 50, range=(min_time,max_time), color=colors[1], label="Design B")
    plt.hold(True)
    plt.hist( times[0], 50, range=(min_time,max_time), color=colors[0], label="Design A", rwidth=.5 )

    plt.title("Successful trajectories in two designs")
    plt.xlabel("First Passage Time (s)",fontsize='larger')
    plt.ylabel("# of Trajectories",fontsize='larger')
    plt.yticks(fontsize='larger',va='bottom')
    plt.xticks(fontsize='larger')
    plt.legend(loc=0)
    plt.show()
In [8]:
def plot_completion_graph( result_lists, colors=['b','r'], figure=1, labels=['Design A', 'Design B'] ):
    times = []
    percents = []
    for rl in result_lists:
        n = len(rl)
        t = [i.time for i in rl if i.tag == 'complete']
        t.sort()
        times.append(np.array(t))

        p = np.array(range(1,len(t)+1))
        p = 100 * p / n  # percentage of all trials, including ones that don't complete
        percents.append( p )

    plt.figure( figure )
    plt.hold(False)

    for t,p,c,label in zip(times,percents,colors,labels):
        plt.plot( t, p, color = c, linewidth=2.0, label=label )
        plt.hold(True)

    plt.xlabel("Simulation Time (s)",fontsize='larger')
    plt.ylabel("% of Trajectories Complete",fontsize='larger')
    plt.yticks([0,20,40,60,80,100],("0%","20%","40%","60%","80%","100%"),fontsize='larger',va='bottom')
    plt.xticks(fontsize='larger')
    plt.title( "Percentage of Total Trajectories Complete by a Given Time" )
    plt.legend(loc=0)
    plt.show()
In [9]:
def plot_completion_graph_complete_vs_failed( result_list, colors=['b','m'], figure=1, labels=['complete','failed'] ):
    n = len(result_list) # number of trials
    times = []
    percents = []
    for rl in ['complete','failed']:
        t = [i.time for i in result_list if i.tag == rl]
        t.sort()
        times.append(np.array(t))
        p = np.array(range(1,len(t)+1))
        p = 100 * p / n
        percents.append( p )
    # the last data points of each type should sum to 1.0 if all trajectories either fail or complete (rather than time out)

    plt.figure( figure )
    plt.hold(False)

    for t,p,c,label in zip(times,percents,colors,labels):
        plt.plot( t, p, color = c, linewidth=2.0, label=label )
        plt.hold(True)

    plt.xlabel("Simulation Time (s)",fontsize='larger')
    plt.ylabel("% of Trajectories Complete",fontsize='larger')
    plt.yticks([0,20,40,60,80,100],("0%","20%","40%","60%","80%","100%"),fontsize='larger',va='bottom')
    plt.xticks(fontsize='larger')
    plt.title( "Percentage of Total Trajectories Complete by a Given Time, Design A" )
    plt.legend(loc=0)
    plt.show()

Now we are ready to run the simulations. First we set up the molecules and options. You might want to try different numbers of trials, or run it with different sequences.

In [34]:
# The following two options are equivalent, since they are defaults
# o1,o2 = setup_threewaybm_comparison()  
o1,o2 = setup_threewaybm_comparison(trials=100, toehold_seq = "GTGGGT", bm_design_A = "ACCGCACGTCCACGGTGTCG", bm_design_B = "ACCGCACGTCACTCACCTCG")

# The same, but a longer toehold:
# o1,o2 = setup_threewaybm_comparison(trials=100, toehold_seq = "GTGGGTAGGT", bm_design_A = "ACCGCACGTCCACGGTGTCG", bm_design_B = "ACCGCACGTCACTCACCTCG")

Actually do the simulation. On my laptop, they take about 10 minutes for 100 trials. You might want to just do 10, for speed -- but the histograms below will look much better if you run 100 or more!

Note that there is no need to update the energy model in between runs, because conditions are the same. Each simulation trial prints the complexes present when it stops including its energy, each preceeded by that simulation's random number seed.

In [35]:
print
print "Running Design A"
s=SimSystem(o1)
s.start()
print
print "Running Design B"
s=SimSystem(o2)
s.start()
Running Design A
6604224628510739414: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

6604224628510739414: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1703676841: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1703676841: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

100207477: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

100207477: [0] '6:Automatic_12*': -1.16 
CGACACCGTGGACGTGCGGTACCCAC
.......((((((.....))..))))

1300460798: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1300460798: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

1921764337: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1921764337: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

646007698: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

646007698: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

317465885: [1] '14:incumbent': -1.92 
CGACACCGTGGACGTGCGGT
.....(((........))).

317465885: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

579133852: [1] '14:incumbent': -2.39 
CGACACCGTGGACGTGCGGT
.....(((((....))))).

579133852: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

2011192973: [1] '14:incumbent': -0.28 
CGACACCGTGGACGTGCGGT
...(((.......)))....

2011192973: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1849152600: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1849152600: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1250869512: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1250869512: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1939215445: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1939215445: [0] '6:Automatic_12*': 0.8 
CGACACCGTGGACGTGCGGTACCCAC
..(..((((......)))))......

589042999: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

589042999: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1517655462: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1517655462: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

566557742: [1] '12:Automatic_12,14:incumbent': -20.395213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......(((((((((((((((((((.+.)))))))))))))))))))

566557742: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1816938696: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1816938696: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

397395160: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

397395160: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......

1945134143: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1945134143: [0] '6:Automatic_12*': -1.92 
CGACACCGTGGACGTGCGGTACCCAC
.....(((........))).......

452052276: [1] '14:incumbent': 1.38 
CGACACCGTGGACGTGCGGT
..((...))..((.....))

452052276: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1537260995: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1537260995: [0] '6:Automatic_12*': -2.41 
CGACACCGTGGACGTGCGGTACCCAC
.....((((......)))).......

1694886059: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1694886059: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1078272123: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1078272123: [0] '6:Automatic_12*': 2.17 
CGACACCGTGGACGTGCGGTACCCAC
((....)).....(((...)))....

1086126865: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1086126865: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

243081636: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

243081636: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

49972049: [1] '12:Automatic_12,14:incumbent': -20.395213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......(((((((((((((((((((.+.)))))))))))))))))))

49972049: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

517598746: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

517598746: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1650440717: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1650440717: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1932474339: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1932474339: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

585069599: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

585069599: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......

1503746406: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1503746406: [0] '6:Automatic_12*': -0.5 
CGACACCGTGGACGTGCGGTACCCAC
.(..(((((......)))))...)..

1330835290: [1] '12:Automatic_12,14:incumbent': -17.825213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......((((((((((((((((...+...)))))))))))))))).

1330835290: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

792985827: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

792985827: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1755277292: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1755277292: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1401272251: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1401272251: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

1225201953: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1225201953: [0] '6:Automatic_12*': -1.67 
CGACACCGTGGACGTGCGGTACCCAC
.(..((((((....)))))).)....

432674135: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

432674135: [0] '6:Automatic_12*,12:Automatic_12': -26.545213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

34651511: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

34651511: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

127525177: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

127525177: [0] '6:Automatic_12*,12:Automatic_12': -26.545213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

1743918023: [1] '14:incumbent': -2.41 
CGACACCGTGGACGTGCGGT
.....((((......)))).

1743918023: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1461588800: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1461588800: [0] '6:Automatic_12*': 0.8 
CGACACCGTGGACGTGCGGTACCCAC
...(((.......))).(...)....

951600502: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

951600502: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

1561590077: [1] '14:incumbent': 1.99 
CGACACCGTGGACGTGCGGT
...(.....)..(.....).

1561590077: [0] '6:Automatic_12*,12:Automatic_12': -25.975213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((..+..))))))))))))))))))))))..

1088734281: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

1088734281: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1284210019: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

1284210019: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

751360865: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

751360865: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

428065467: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

428065467: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

908868015: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

908868015: [0] '6:Automatic_12*': 0.54 
CGACACCGTGGACGTGCGGTACCCAC
.........((..........))...

234392080: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

234392080: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1078337795: [1] '14:incumbent': -2.41 
CGACACCGTGGACGTGCGGT
.....((((......)))).

1078337795: [0] '6:Automatic_12*,12:Automatic_12': -24.655213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
....((((((((((((((((((((((+))))))))))))))))))))))....

1317715975: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1317715975: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1076957156: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

1076957156: [0] '6:Automatic_12*,12:Automatic_12': -26.075213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.((((((((((((((((((((((((.+.)))))))))))))))))))))))).

322084270: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

322084270: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1695574596: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1695574596: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

324074100: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

324074100: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......

551939943: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

551939943: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......

1426420060: [1] '14:incumbent': -2.39 
CGACACCGTGGACGTGCGGT
.....(((((....))))).

1426420060: [0] '6:Automatic_12*,12:Automatic_12': -26.545213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

509003315: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

509003315: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2051029996: [1] '12:Automatic_12,14:incumbent': -20.395213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......(((((((((((((((((((.+.)))))))))))))))))))

2051029996: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

290195647: [1] '14:incumbent': -2.39 
CGACACCGTGGACGTGCGGT
.....(((((....))))).

290195647: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1245806206: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

1245806206: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1521638287: [1] '14:incumbent': -2.41 
CGACACCGTGGACGTGCGGT
.....((((......)))).

1521638287: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

176578821: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

176578821: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1629703447: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1629703447: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1936991502: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1936991502: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

1851141978: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1851141978: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

715855049: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

715855049: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

339746679: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

339746679: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1447254580: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1447254580: [0] '6:Automatic_12*': -1.92 
CGACACCGTGGACGTGCGGTACCCAC
.....(((........))).......

218874352: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

218874352: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1437549229: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1437549229: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

538700323: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

538700323: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

980747773: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

980747773: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

1220919013: [1] '12:Automatic_12,14:incumbent': -19.505213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((..+..))))))))))))))))))

1220919013: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

491074223: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

491074223: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

256168903: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

256168903: [0] '6:Automatic_12*': 3.02 
CGACACCGTGGACGTGCGGTACCCAC
.....(.(....))............

1351504537: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1351504537: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......

578962909: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

578962909: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

499999699: [1] '14:incumbent': -2.42 
CGACACCGTGGACGTGCGGT
....((((........))))

499999699: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1839462860: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

1839462860: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

693936086: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

693936086: [0] '6:Automatic_12*': -1.69 
CGACACCGTGGACGTGCGGTACCCAC
.(..(((((......))))).)....

946618205: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

946618205: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

17312865: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

17312865: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

543609672: [1] '14:incumbent': -2.41 
CGACACCGTGGACGTGCGGT
.....((((......)))).

543609672: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

602524189: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

602524189: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1845717590: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

1845717590: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1226319464: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1226319464: [0] '6:Automatic_12*': -2.41 
CGACACCGTGGACGTGCGGTACCCAC
.....((((......)))).......

795853589: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

795853589: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

595977454: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

595977454: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1029342980: [1] '14:incumbent': -2.42 
CGACACCGTGGACGTGCGGT
....((((........))))

1029342980: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1050871073: [1] '14:incumbent': -2.89 
CGACACCGTGGACGTGCGGT
....((((((....))))))

1050871073: [0] '6:Automatic_12*,12:Automatic_12': -27.435213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

530568369: [1] '14:incumbent': -2.91 
CGACACCGTGGACGTGCGGT
....(((((......)))))

530568369: [0] '6:Automatic_12*,12:Automatic_12': -28.325213819 
CGACACCGTGGACGTGCGGTACCCAC+GTGGGTACCGCACGTCCACGGTGTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

894194274: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

894194274: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

243414330: [1] '12:Automatic_12,14:incumbent': -21.425213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
.......(((((((((((((((((((+))))))))))))))))))).

243414330: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

961724006: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

961724006: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1174277070: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1174277070: [0] '6:Automatic_12*': -2.39 
CGACACCGTGGACGTGCGGTACCCAC
.....(((((....))))).......

735503385: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

735503385: [0] '6:Automatic_12*': -3.37 
CGACACCGTGGACGTGCGGTACCCAC
....((((((....))))))......

1207741803: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1207741803: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1418025509: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1418025509: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1178591573: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1178591573: [0] '6:Automatic_12*': -3.39 
CGACACCGTGGACGTGCGGTACCCAC
....(((((......)))))......

1077731645: [1] '12:Automatic_12,14:incumbent': -22.215213819 
GTGGGTACCGCACGTCCACGGTGTCG+CGACACCGTGGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1077731645: [0] '6:Automatic_12*': -2.9 
CGACACCGTGGACGTGCGGTACCCAC
....((((........))))......


Running Design B
-4621967137565713499: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

-4621967137565713499: [0] '7:Automatic_13*,13:Automatic_13': -19.695213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((.(((((((((((((..+..))))))))))))).)))))))...

388830634: [1] '15:incumbent': 0.89 
CGAGGTGAGTGACGTGCGGT
....((.....)).......

388830634: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

310607269: [1] '15:incumbent': 1.99 
CGAGGTGAGTGACGTGCGGT
..(.(.......).).....

310607269: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1903955352: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1903955352: [0] '7:Automatic_13*,13:Automatic_13': -22.835213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
....((((((((((((((((((((((+))))))))))))))))))))))....

550162319: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

550162319: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

656524252: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

656524252: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

831440664: [1] '15:incumbent': 1.1 
CGAGGTGAGTGACGTGCGGT
............(....)..

831440664: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1364734972: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1364734972: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1079349712: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1079349712: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

812960041: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

812960041: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

1929238377: [1] '15:incumbent': 0.89 
CGAGGTGAGTGACGTGCGGT
....((.....)).......

1929238377: [0] '7:Automatic_13*,13:Automatic_13': -25.275213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((..+..))))))))))))))))))))))).

1174170184: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1174170184: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1232192394: [1] '15:incumbent': 1.22 
CGAGGTGAGTGACGTGCGGT
.......(.((.....)).)

1232192394: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

2036680884: [1] '15:incumbent': 1.99 
CGAGGTGAGTGACGTGCGGT
..(.(.......).).....

2036680884: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1312301610: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1312301610: [0] '7:Automatic_13*,13:Automatic_13': -24.385213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((..+..))))))))))))))))))))))..

433859118: [1] '15:incumbent': 2.73 
CGAGGTGAGTGACGTGCGGT
....(.......).......

433859118: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

502191336: [1] '15:incumbent': 1.68 
CGAGGTGAGTGACGTGCGGT
......(.....).......

502191336: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

8051621: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

8051621: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1274141817: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1274141817: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

797148701: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

797148701: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1351792591: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1351792591: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

616745900: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

616745900: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2009355622: [1] '15:incumbent': 1.1 
CGAGGTGAGTGACGTGCGGT
............(....)..

2009355622: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1384412553: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1384412553: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

161822546: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

161822546: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1996505209: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

1996505209: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1444056789: [1] '15:incumbent': 1.1 
CGAGGTGAGTGACGTGCGGT
............(....)..

1444056789: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

44035297: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

44035297: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1107154586: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1107154586: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1620170972: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1620170972: [0] '7:Automatic_13*,13:Automatic_13': -25.275213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((..+..))))))))))))))))))))))).

1503780799: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1503780799: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1522727870: [1] '15:incumbent': 3.63 
CGAGGTGAGTGACGTGCGGT
..(......)..(....)..

1522727870: [0] '7:Automatic_13*,13:Automatic_13': -23.445213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((..+..)))))))))))))))))))))...

742727299: [1] '13:Automatic_13,15:incumbent': -20.625213819 
GTGGGTACCGCACGTCACTCACCTCG+CGAGGTGAGTGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

742727299: [0] '7:Automatic_13*': 1.45 
CGAGGTGAGTGACGTGCGGTACCCAC
((..((.....))...))........

1041740653: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1041740653: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

404904914: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

404904914: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1924011278: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

1924011278: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

1181974547: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

1181974547: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2145366691: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

2145366691: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

766270485: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

766270485: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

921410960: [1] '15:incumbent': 1.99 
CGAGGTGAGTGACGTGCGGT
..(.(.......).).....

921410960: [0] '7:Automatic_13*,13:Automatic_13': -25.275213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((..+..))))))))))))))))))))))).

712711488: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

712711488: [0] '7:Automatic_13*,13:Automatic_13': -23.445213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((..+..)))))))))))))))))))))...

2107116500: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

2107116500: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2031133742: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

2031133742: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

366325459: [1] '15:incumbent': 1.22 
CGAGGTGAGTGACGTGCGGT
.......(.((.....)).)

366325459: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

469499357: [1] '15:incumbent': 2.73 
CGAGGTGAGTGACGTGCGGT
...........(.......)

469499357: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1161848385: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1161848385: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

789786259: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

789786259: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

794179123: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

794179123: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1130250897: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1130250897: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1090866970: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

1090866970: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1543842306: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1543842306: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

135878279: [1] '13:Automatic_13,15:incumbent': -20.625213819 
GTGGGTACCGCACGTCACTCACCTCG+CGAGGTGAGTGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

135878279: [0] '7:Automatic_13*': 0.35 
CGAGGTGAGTGACGTGCGGTACCCAC
...((..(.((.....)).)..))..

183153459: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

183153459: [0] '7:Automatic_13*,13:Automatic_13': -25.275213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((..+..))))))))))))))))))))))).

357172939: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

357172939: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1123300: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1123300: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

1625367343: [1] '15:incumbent': 2.48 
CGAGGTGAGTGACGTGCGGT
(.....).....(....)..

1625367343: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1953642256: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1953642256: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1205454187: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1205454187: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

442541274: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

442541274: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

1579483543: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1579483543: [0] '7:Automatic_13*,13:Automatic_13': -24.485213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.((((((((((((((((((((((((.+.)))))))))))))))))))))))).

205951714: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

205951714: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

24510184: [1] '15:incumbent': 1.62 
CGAGGTGAGTGACGTGCGGT
........((.....))...

24510184: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

810168037: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

810168037: [0] '7:Automatic_13*,13:Automatic_13': -23.155213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.((((((.((((((((((((((((((+)))))))))))))))))).)))))).

1104871124: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1104871124: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

269954864: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

269954864: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2047683604: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

2047683604: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1641170672: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1641170672: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

311887117: [1] '15:incumbent': 2.49 
CGAGGTGAGTGACGTGCGGT
.......(.(.......).)

311887117: [0] '7:Automatic_13*,13:Automatic_13': -21.555213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..(((((((((((((((((((((.((+)).)))))))))))))))))))))..

2008276168: [1] '15:incumbent': 2.95 
CGAGGTGAGTGACGTGCGGT
.(..........).......

2008276168: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1692747787: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1692747787: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1875471352: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1875471352: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

590133089: [1] '15:incumbent': 1.62 
CGAGGTGAGTGACGTGCGGT
........((.....))...

590133089: [0] '7:Automatic_13*,13:Automatic_13': -24.905213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((((((((+)))))))))))))))))))))))...

603278334: [1] '15:incumbent': 1.22 
CGAGGTGAGTGACGTGCGGT
.......(.((.....)).)

603278334: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1944751909: [1] '13:Automatic_13,15:incumbent': -20.625213819 
GTGGGTACCGCACGTCACTCACCTCG+CGAGGTGAGTGACGTGCGGT
......((((((((((((((((((((+))))))))))))))))))))

1944751909: [0] '7:Automatic_13*': -0.07 
CGAGGTGAGTGACGTGCGGTACCCAC
...(((..............)))...

1362699087: [1] '15:incumbent': 1.09 
CGAGGTGAGTGACGTGCGGT
............(.....).

1362699087: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

486244723: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

486244723: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1567934247: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1567934247: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

234026863: [1] '15:incumbent': 3.42 
CGAGGTGAGTGACGTGCGGT
..(......).((.....))

234026863: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

495148915: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

495148915: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1163455431: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1163455431: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

163029701: [1] '15:incumbent': 2.53 
CGAGGTGAGTGACGTGCGGT
.......(......).....

163029701: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

731810015: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

731810015: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

494916153: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

494916153: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1437536349: [1] '15:incumbent': 0.89 
CGAGGTGAGTGACGTGCGGT
....((.....)).......

1437536349: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1214650420: [1] '15:incumbent': 1.22 
CGAGGTGAGTGACGTGCGGT
.......(.((.....)).)

1214650420: [0] '7:Automatic_13*,13:Automatic_13': -21.885213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
...(((((((((((((((((.(((((+))))).)))))))))))))))))...

1355466057: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1355466057: [0] '7:Automatic_13*,13:Automatic_13': -25.275213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((..+..))))))))))))))))))))))).

180019418: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

180019418: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1712880915: [1] '15:incumbent': 0.78 
CGAGGTGAGTGACGTGCGGT
((..........))......

1712880915: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

2124199206: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

2124199206: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2103406152: [1] '15:incumbent': 1.1 
CGAGGTGAGTGACGTGCGGT
............(....)..

2103406152: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1164703847: [1] '15:incumbent': 0.39 
CGAGGTGAGTGACGTGCGGT
...........((.....))

1164703847: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

1879677723: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

1879677723: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1706137248: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1706137248: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

520508907: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

520508907: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

159237719: [1] '15:incumbent': 0.15 
CGAGGTGAGTGACGTGCGGT
..(.((.....)).).....

159237719: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

493539578: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

493539578: [0] '7:Automatic_13*,13:Automatic_13': -26.735213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
.(((((((((((((((((((((((((+))))))))))))))))))))))))).

2105409990: [1] '15:incumbent': 2.91 
CGAGGTGAGTGACGTGCGGT
...(............)...

2105409990: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

220939564: [1] '15:incumbent': 3.63 
CGAGGTGAGTGACGTGCGGT
..(......)..(....)..

220939564: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

890723705: [1] '15:incumbent': 1.1 
CGAGGTGAGTGACGTGCGGT
............(....)..

890723705: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

1901457778: [1] '15:incumbent': 0.0 
CGAGGTGAGTGACGTGCGGT
....................

1901457778: [0] '7:Automatic_13*,13:Automatic_13': -25.845213819 
CGAGGTGAGTGACGTGCGGTACCCAC+GTGGGTACCGCACGTCACTCACCTCG
..((((((((((((((((((((((((+))))))))))))))))))))))))..

All the above information is collected into the options objects o1.interface.results and o2.interface.results. Before plotting histograms, let's look to see what kind of data is there. (This next line ought to be skipped if you have run a lot of trials!)

In [36]:
o1.interface.results
Out[36]:
[(6604224628510739414, 17, 0.000160850907002, 'failed', result_type='status_line' ),
 (1703676841, 17, 1.92616617991e-05, 'failed', result_type='status_line' ),
 (100207477, 17, 0.000438326438761, 'failed', result_type='status_line' ),
 (1300460798, 17, 5.20798335101e-06, 'failed', result_type='status_line' ),
 (1921764337, 17, 0.000166737704277, 'failed', result_type='status_line' ),
 (646007698, 17, 0.0003015798823, 'failed', result_type='status_line' ),
 (317465885, 17, 0.000430318067512, 'complete', result_type='status_line' ),
 (579133852, 17, 0.000256050939695, 'complete', result_type='status_line' ),
 (2011192973, 17, 9.18674917838e-05, 'complete', result_type='status_line' ),
 (1849152600, 17, 6.78136842285e-05, 'failed', result_type='status_line' ),
 (1250869512, 17, 0.00020638477375, 'failed', result_type='status_line' ),
 (1939215445, 17, 0.000165824527522, 'failed', result_type='status_line' ),
 (589042999, 17, 6.82324918475e-05, 'failed', result_type='status_line' ),
 (1517655462, 17, 2.78538992281e-05, 'failed', result_type='status_line' ),
 (566557742, 17, 3.05584722781e-06, 'failed', result_type='status_line' ),
 (1816938696, 17, 0.000146990452142, 'failed', result_type='status_line' ),
 (397395160, 17, 0.000213042960395, 'failed', result_type='status_line' ),
 (1945134143, 17, 7.00135599426e-05, 'failed', result_type='status_line' ),
 (452052276, 17, 0.000114969373847, 'complete', result_type='status_line' ),
 (1537260995, 17, 0.000201341525905, 'failed', result_type='status_line' ),
 (1694886059, 17, 0.000172733311474, 'failed', result_type='status_line' ),
 (1078272123, 17, 1.56860465738e-05, 'failed', result_type='status_line' ),
 (1086126865, 17, 0.000510113399445, 'failed', result_type='status_line' ),
 (243081636, 17, 0.000397185954214, 'failed', result_type='status_line' ),
 (49972049, 17, 2.75249971821e-05, 'failed', result_type='status_line' ),
 (517598746, 17, 2.73914882892e-05, 'failed', result_type='status_line' ),
 (1650440717, 17, 0.000135282755189, 'failed', result_type='status_line' ),
 (1932474339, 17, 0.000178961008611, 'failed', result_type='status_line' ),
 (585069599, 17, 0.000474361074969, 'failed', result_type='status_line' ),
 (1503746406, 17, 3.06940968573e-05, 'failed', result_type='status_line' ),
 (1330835290, 17, 4.79413318971e-05, 'failed', result_type='status_line' ),
 (792985827, 17, 0.000421007276626, 'failed', result_type='status_line' ),
 (1755277292, 17, 0.000166055552684, 'failed', result_type='status_line' ),
 (1401272251, 17, 0.000209161689892, 'failed', result_type='status_line' ),
 (1225201953, 17, 0.000747884594026, 'failed', result_type='status_line' ),
 (432674135, 17, 8.64119706116e-05, 'complete', result_type='status_line' ),
 (34651511, 17, 0.000194779942776, 'complete', result_type='status_line' ),
 (127525177, 17, 1.45619668335e-05, 'complete', result_type='status_line' ),
 (1743918023, 17, 0.00018240972785, 'complete', result_type='status_line' ),
 (1461588800, 17, 0.000220566782656, 'failed', result_type='status_line' ),
 (951600502, 17, 4.33094577526e-05, 'failed', result_type='status_line' ),
 (1561590077, 17, 0.00083952087714, 'complete', result_type='status_line' ),
 (1088734281, 17, 0.000250165393835, 'complete', result_type='status_line' ),
 (1284210019, 17, 6.97267689308e-05, 'complete', result_type='status_line' ),
 (751360865, 17, 4.80570605946e-05, 'failed', result_type='status_line' ),
 (428065467, 17, 0.000226425204615, 'failed', result_type='status_line' ),
 (908868015, 17, 0.000624397968967, 'failed', result_type='status_line' ),
 (234392080, 17, 0.000873488293411, 'failed', result_type='status_line' ),
 (1078337795, 17, 0.000288122048538, 'complete', result_type='status_line' ),
 (1317715975, 17, 0.000668938083529, 'failed', result_type='status_line' ),
 (1076957156, 17, 2.48699759255e-05, 'complete', result_type='status_line' ),
 (322084270, 17, 0.000578321783068, 'failed', result_type='status_line' ),
 (1695574596, 17, 0.000302988602723, 'failed', result_type='status_line' ),
 (324074100, 17, 6.68187266992e-05, 'failed', result_type='status_line' ),
 (551939943, 17, 1.58295664519e-05, 'failed', result_type='status_line' ),
 (1426420060, 17, 0.000358403199973, 'complete', result_type='status_line' ),
 (509003315, 17, 0.000105486765238, 'complete', result_type='status_line' ),
 (2051029996, 17, 4.27789785267e-05, 'failed', result_type='status_line' ),
 (290195647, 17, 1.27176183828e-05, 'complete', result_type='status_line' ),
 (1245806206, 17, 2.62717989447e-05, 'complete', result_type='status_line' ),
 (1521638287, 17, 0.000617322267522, 'complete', result_type='status_line' ),
 (176578821, 17, 3.6804871469e-05, 'failed', result_type='status_line' ),
 (1629703447, 17, 0.000880491924702, 'failed', result_type='status_line' ),
 (1936991502, 17, 0.000305401524977, 'failed', result_type='status_line' ),
 (1851141978, 17, 0.000264923180967, 'failed', result_type='status_line' ),
 (715855049, 17, 0.000442176426888, 'failed', result_type='status_line' ),
 (339746679, 17, 0.000219323335814, 'complete', result_type='status_line' ),
 (1447254580, 17, 0.000304901033627, 'failed', result_type='status_line' ),
 (218874352, 17, 0.000431159447045, 'failed', result_type='status_line' ),
 (1437549229, 17, 0.000164252987336, 'failed', result_type='status_line' ),
 (538700323, 17, 0.000506619761804, 'failed', result_type='status_line' ),
 (980747773, 17, 0.000409353317134, 'failed', result_type='status_line' ),
 (1220919013, 17, 0.000182258939407, 'failed', result_type='status_line' ),
 (491074223, 17, 0.000175217866268, 'complete', result_type='status_line' ),
 (256168903, 17, 0.000263763588349, 'failed', result_type='status_line' ),
 (1351504537, 17, 0.000683366421612, 'failed', result_type='status_line' ),
 (578962909, 17, 0.000251312063801, 'failed', result_type='status_line' ),
 (499999699, 17, 0.000205495959952, 'complete', result_type='status_line' ),
 (1839462860, 17, 0.000514555791783, 'failed', result_type='status_line' ),
 (693936086, 17, 6.19521275432e-06, 'failed', result_type='status_line' ),
 (946618205, 17, 0.00050052103671, 'failed', result_type='status_line' ),
 (17312865, 17, 2.57597415195e-06, 'complete', result_type='status_line' ),
 (543609672, 17, 0.00167537585887, 'complete', result_type='status_line' ),
 (602524189, 17, 0.00015930545304, 'failed', result_type='status_line' ),
 (1845717590, 17, 2.37966631144e-05, 'complete', result_type='status_line' ),
 (1226319464, 17, 2.42527794017e-05, 'failed', result_type='status_line' ),
 (795853589, 17, 0.000117776222338, 'complete', result_type='status_line' ),
 (595977454, 17, 0.000714476948091, 'failed', result_type='status_line' ),
 (1029342980, 17, 0.000140143051278, 'complete', result_type='status_line' ),
 (1050871073, 17, 0.00087990446645, 'complete', result_type='status_line' ),
 (530568369, 17, 5.13506504676e-05, 'complete', result_type='status_line' ),
 (894194274, 17, 0.000148126093916, 'failed', result_type='status_line' ),
 (243414330, 17, 0.000695623072611, 'failed', result_type='status_line' ),
 (961724006, 17, 0.000356091389944, 'failed', result_type='status_line' ),
 (1174277070, 17, 0.00025262304778, 'failed', result_type='status_line' ),
 (735503385, 17, 0.000881130481737, 'failed', result_type='status_line' ),
 (1207741803, 17, 0.00039340586419, 'failed', result_type='status_line' ),
 (1418025509, 17, 0.000179524094768, 'failed', result_type='status_line' ),
 (1178591573, 17, 0.000198536077016, 'failed', result_type='status_line' ),
 (1077731645, 17, 2.11169834848e-05, 'failed', result_type='status_line' )]

That information is printed in a more understandable format, if you ask via print.

In [37]:
result_list1 = o1.interface.results 
result_list2 = o2.interface.results 
# look at a few things by hand, just to check
print result_list1[0]
Trajectory Seed [6604224628510739414]
        Result: Normal
        Completion Time: 0.000160850907002
        Completion Tag: failed

The easiest thing to do is to separate results based on whether strand displacement occurred, or not.

In [38]:
times_complete1 = np.array([i.time for i in result_list1 if i.tag == 'complete'])
times_failed1 = np.array([i.time for i in result_list1 if i.tag == 'failed'])
print "Design A: %d trajectories total, %d completed, %d failed." % (len(result_list1), len(times_complete1), len(times_failed1))
  
times_complete2 = np.array([i.time for i in result_list2 if i.tag == 'complete'])
times_failed2 = np.array([i.time for i in result_list2 if i.tag == 'failed'])
print "Design B: %d trajectories total, %d completed, %d failed." % (len(result_list2), len(times_complete2), len(times_failed2))
Design A: 100 trajectories total, 28 completed, 72 failed.
Design B: 100 trajectories total, 97 completed, 3 failed.

Now let's go ahead and see the histograms. OK, they don't look so interesting with just 10 trials. Go back and change that to 100 and try again, if you didn't already...

In [39]:
%matplotlib inline
plot_histograms_complete_vs_failed(o1.interface.results)
In [40]:
plot_completion_graph_complete_vs_failed(o1.interface.results)
In [41]:
plot_histograms_two_designs([o1.interface.results, o2.interface.results])
In [42]:
plot_completion_graph([o1.interface.results, o2.interface.results])
In [ ]: